-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
text for progess #11
Comments
Do you want the built-in hover title design, or should we create something of our own? |
Looks good. As you like. I think, the more we do although it is fun, the less new people can do and maybe the less contributions we get. How did you decide to contribute? Was it because you fixed a small mistake? If we also find those small issues, we can get more people involved. |
Yeah, you're right. |
Hi, I am interested in contributing to this project and learning as much as possible. I like the github implementation as mentioned by @weerox. Is there a github api to search through or code for the tag? |
hmmm I can't get edit the progress bar, I look at progress.css and tutorial.html to make the changes that I wanted to make on the progress bar but I can't figure out how it works. Thanks. |
@joshhazelhurst123 Hi, did you set up jekyll locally? The code for the progress bar starts here: regex-tutorial/_layouts/tutorial.html Line 70 in 058c263
and this is the link for which the hover effect can be changed: regex-tutorial/_layouts/tutorial.html Line 96 in 058c263
Could I answer some questions? Do you have new questions? Which changes did you try and make? |
Yes jekyll works, you have helped me a lot! Thanks for your comment and reply. I managed to put a basic hover tag in tutorial.html which hovers over all paragraphs, and a href links. Thanks again. |
I think, you may be able to use the id or the class selector, not only the tag selector like "p" or "a". regex-tutorial/_layouts/tutorial.html Line 96 in 058c263
generates <a id="page-de/03-03.html" class="step" href="../de/03-03.html"></a> so you can use class and step. |
Thanks, so I have working, |
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_tooltip |
You can make code comments by selecting the text and using the <> button above. <a
href="http://test.com">test</a> |
Hm. I do not know how that expresses itself. I think, for confusion, one has an inconsistent model with at least two different conflicting strains of thought. Could you write down all of them, so I can see what is there? Currently, I could not phrase it better into the uncertain than the tutorial. |
Ah Yes you have read my mind. There are two different conflicting strains of thought. I am using w3school online tutorials and I am looking at your example about implementing the tooltip on the regextutorial site. On the w3schools example of tooltip, they use a span and div tag to implement the tooltip, with CSS defining the tooltip. In summary, can I implement the tooltip from w3schools without the div and span tags. Hopefully you understand me. Thank you. |
I think, you can do something like this: <span id="page-de/03-03.html" class="step">
<a href="../de/03-03.html"></a>
<span class="tooltip">Tooltip text</span>
</span> span and div are only slightly different. Using CSS, you can convert one into the other. a span differs form div in values of some attributes. |
I have a tooltip connected as shown above. Not sure why the progress bar has halfway disappeared. I updated tutorial.html with the following code. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
$(document).ready(function(){ And I put in the a tags |
Can you, instead of sending the code in the issue, create a Pull Request
with the code?
This way, I can exactly see what is going on and we can discuss it line
by line. This is the workflow we usually take.
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
I will not add these libraries and we can work later around them.
It is not necessary to include megabytes of code and break offline
usability.
…On 2/27/19 6:48 AM, Josh wrote:
image
<https://user-images.githubusercontent.com/30138699/53468629-e2380f00-3abf-11e9-8a82-1bce1f1c5e6a.png>
I have a tooltip connected as shown above. Not sure why the progress
bar has halfway disappeared. I updated tutorial.html with the
following code.
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
|<script> |
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip({title: "Hooray", placement:
"bottom"});
});
</script>
And I put in the a tags
data-toggle="tooltip" title="Hooray!"
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#11 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAieIBNRoOoTblCh-UUpPp2OxQ39DCFdks5vRhw_gaJpZM4M-TiB>.
|
pull request. #119 |
When the mouse hovers above the bubbles on the progress bar, the title of the linked page should be displayed.
The text was updated successfully, but these errors were encountered: