İbrahim TELCİ 2 Posted May 27, 2020 Share Posted May 27, 2020 Merhabalar. Formun alt tarafında kayan yazı ile bir bilgilendirme çubuğu oluşturmak istiyorum. Bunu Timer ile yaptığımda pek akışkan olmuyor. Donmalar oluyor. Farklı bir yol ile nasıl yapabilirim. Öneriniz var mı? Cevaplarınız için şimdiden teşekkürler. Quote Link to post Share on other sites
Mehmet Emin 47 Posted May 27, 2020 Share Posted May 27, 2020 Bunu CSS ile yapın. Timer uygun degil. Quote Link to post Share on other sites
İbrahim TELCİ 2 Posted May 27, 2020 Author Share Posted May 27, 2020 Birkaç satır ufak kod haricinde CSS hiç kullanmadım örnek bir uygulama veya kod göndermeniz mümkünmü? Quote Link to post Share on other sites
Mehmet Emin 47 Posted May 27, 2020 Share Posted May 27, 2020 https://stackoverflow.com/questions/32638465/how-to-scroll-text-smoothly-using-html5 Burada css örneği var. Farklı tarayıcılar ile deneyin sorun yaşarsanız javascript ile denersiniz. Bu arada ServerModule üzerinde CustomCSS bölümüne ekleyebilirsiniz. Forumda uniGUI elementlerine nasıl CSS atayabileceğiniz konusunda arama yapın. Quote Link to post Share on other sites
İbrahim TELCİ 2 Posted May 30, 2020 Author Share Posted May 30, 2020 Bilgilendirme için teşekkürler. Aşağıdaki CSS ile olayı çözdüm. Gayet sağlıklı çalışıyor. Belki başka birilerinin de işine yarar. @keyframes slide { from { left:100%; transform: translate(0, 0); } to { left: -100%; transform: translate(-100%, 0); } } @-webkit-keyframes slide { from { left:100%; transform: translate(0, 0); } to { left: -100%; transform: translate(-100%, 0); } } .marquee { overflow:hidden; position:absolute; white-space: nowrap; animation-name: slide; animation-duration: 50s; animation-timing-function: linear; animation-iteration-count: infinite; -webkit-animation-name: slide; -webkit-animation-duration: 50s; -webkit-animation-timing-function:linear; -webkit-animation-iteration-count: infinite; } 2 Quote Link to post Share on other sites
Freeman35 57 Posted May 30, 2020 Share Posted May 30, 2020 eyvAllah, bilgiyi paylaştığın için teşekkürler. Quote Link to post Share on other sites
mehmet07 15 Posted May 31, 2020 Share Posted May 31, 2020 Teşekkürler Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.